Welcome![Sign In][Sign Up]
Location:
Search - ramdisk driver

Search list

[Driver Developramdisk

Description: 虚拟RAM磁盘的驱动程序源代码!-Virtual RAM disk driver source code!
Platform: | Size: 11241 | Author: mboma | Hits:

[Driver Developramdisk

Description: 一个内存驱动器的源代码- A memory driver source code
Platform: | Size: 21504 | Author: 站长 | Hits:

[Driver Developramdisk

Description: 虚拟RAM磁盘的驱动程序源代码!-Virtual RAM disk driver source code!
Platform: | Size: 11264 | Author: mboma | Hits:

[Driver Developms_ramdisk

Description: 微软的内存盘范例,Ramdisk Sample Driver-Microsoft
Platform: | Size: 25600 | Author: billy | Hits:

[Embeded Linuxlinuxdriver

Description: linux设备驱动 | |-- DMA范例 | | |-- 3c505.c | | |-- 3c505.h | | `-- dma.h | `-- 静态映射范例 | `-- mach-smdk2440.c |--- | |-- NVRAM驱动 | | `-- generic_nvram.c | |-- 触摸屏驱动 | | |-- 作为input设备 | | | |-- s3c2410_ts.c | | | `-- s3c2410_ts.h | | `-- 作为普通字符设备 | | `-- s3c2410-ts.c | |-- 看门狗驱动 | | `-- s3c2410_wdt.c | `-- 平台设备 | `-- devs.c |--- | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c-linux device drivers | | DMA Example | | | 3c505.c | | | 3c505.h | | `dma.h |` static mapping examples | `mach-smdk2440.c |- | | NVRAM driver | |` generic_nvram.c | | Touch Screen Driver | | | as the input device | | | | s3c2410_ts.c | | | `s3c2410_ts.h | |` as an ordinary character equipment | | `s3c2410-ts.c | | watchdog driver | |` s3c2410_wdt.c | `platform equipment |` devs.c |- | | IDE Driver | | | ide-disk.c | | `ide-h8300.c |` RAMDISK driver | `rd.c
Platform: | Size: 53248 | Author: 张小冬 | Hits:

[Driver DevelopRAMDISK_DRIVER

Description: 本软件是一款可以把内存模拟为硬盘的驱动程序.-This software is a memory can be simulated for the hard disk driver.
Platform: | Size: 53248 | Author: softdbg | Hits:

[Driver DevelopRAMDISK

Description: Ramdisk 是一个用于演示纯软件的 Windows(r) 2000 设备驱动程序的示例。此驱动程序会创建一个指定大小的 RAM 盘。您可以像使用任何其他磁盘一样使用此 Ramdisk,但在您关闭计算机时该磁盘的内容会丢失。(一般来说,Windows(r) 2000 缓存管理器在优化内存使用方面比 Ramdisk 要好得多。)-Ramdisk is a pure software used for demonstration of Windows (r) 2000 device driver sample. This driver creates a RAM disk of specified sizes. You can use any other disk as the same as using the Ramdisk, but when you shut down your computer the contents of the disk will be lost. (Generally speaking, Windows (r) 2000 cache management in optimizing the memory usage much better than Ramdisk.)
Platform: | Size: 24576 | Author: tony zhao | Hits:

[Linux-UnixRAMDISK_driver_code

Description: 这是LINUX下面的RAMDISK驱动,相信大家一定有点FAMILY吧,这是搞嵌入式LINUX的朋友们用到过的!-This is the LINUX following RAMDISK driver, I believe we must FAMILY bar a bit, which is engaged in embedded LINUX friends used before!
Platform: | Size: 5120 | Author: 冯知凡 | Hits:

[Linux-UnixLinuxDeviceDriver-IDE

Description: Linux设备驱动开发详解源码- | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c-Explain the development of Linux device driver source code- | |- IDE drive | | |- ide-disk.c | | `- ide-h8300.c |`- RAMDISK driver | `- rd.c
Platform: | Size: 16384 | Author: bob | Hits:

[Driver Developramdisk

Description: 建立RAM上的硬盘WDF驱动程序。用WDK和VS2005编译。用附加INF安装。 -RAM disk driver to demonstrate how to write WDF windows device driver.
Platform: | Size: 1768448 | Author: Gary Li | Hits:

[Embeded Linuxs3c2410_RAMDISK

Description: s3c2410嵌入式Linux RAMDISK驱动范例-s3c2410 Embedded Linux RAMDISK driver examples
Platform: | Size: 5120 | Author: 西米 | Hits:

[OS programRAMDISK

Description: Ramdisk driver..install the driver and enjoy it
Platform: | Size: 103424 | Author: iluxa | Hits:

[Driver DevelopRAMDisk_src

Description: simple ramdrive examples in DDK windows device driver , it can be used by skeleton code
Platform: | Size: 261120 | Author: gomwing | Hits:

[Driver Developaramdisk

Description: windows 2000/xp ramdisk 驱动源码-windows 2000/xp ramdisk driver source
Platform: | Size: 23552 | Author: promethium | Hits:

[Linux-UnixLinux-driver-development13

Description: 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第13章、Linux块设备驱动。块设备是与字符设备并列的概念,这两类设备在Linux中驱动的结构有较大差异,总体而言,块设备驱动比字符设备驱动要复杂得多,在I/O操作上表现出极大的不同,缓冲、I/O调度、请求队列等都是与块设备驱动相关的概念。本章将详细讲解Linux块设备驱动的编程方法。13.1节讲解块设备I/O操作的特点,分析字符设备与块设备在I/O操作上的差异。13.2节从整体上描述Linux块设备驱动的结构,分析主要的数据结构、函数及其关系。13.3~13.5节分别讲解块设备驱动模块加载与卸载、打开与释放和ioctl()函数。13.6节非常重要,讲述了块设备I/O操作所依赖的请求队列的概念及用法。13.2节与13.3~13.6节是整体与部分的关系,13.2~13.6节与13.7节是迭代递进的关系。13.7节在13.1~13.6节讲解内容的基础上,总结Linux下块设备的读写流程,而13.7节则讲解了块设备驱动的具体实例,即RamDisk的驱动。-Author: HuaQing vision embedded institute. The Linux device driver development "(08 and 09 sep TOP50) annual list of best-selling chapter 13, Linux piece of device drivers. Piece of equipment is the concept of equipment and characters are, these two types of equipment in the structure of the drive in Linux have bigger difference, overall, piece of equipment than character device drivers drive is much more complex, in the I/O operation borrows great different, buffer, I/O operation, request queuing is of the device driver related concepts. This chapter will be explained Linux piece of equipment of the driver programming. Section 13.1 explain piece of equipment I/O operation, the characteristics of the character device and piece of equipment analysis in the I/O operation differences. Section 13.2 from the whole description of Linux device drivers, analysis of the main structure of the data structure, function and its relationship. 13.3 ~ 13.5 respectively of asher. Explain
Platform: | Size: 645120 | Author: 华清远见 | Hits:

[Driver DevelopIDEaramdisk.tar

Description: IDE驱动和ramdisk驱动程序范例,简单介绍IDE和ramdisk驱动的大概框架-The IDE driver and ramdisk driver model, introduces the general framework of the IDE and ramdisk drivers
Platform: | Size: 16384 | Author: 王军仁 | Hits:

[Driver Developramdisk

Description: Driver Framework Ramdisk Sample Driver
Platform: | Size: 18432 | Author: doudou | Hits:

[Linux driverramdisk-drive

Description: linux环境下的RAMDISK驱动程序,测试通过-circumstances linux the RAMDISK driver, test OK
Platform: | Size: 5120 | Author: 刘佳齐 | Hits:

[Linux driverramdisk

Description: ramdisk驱动,proc文件系统接口,md5算法-ramdisk driver, proc file system interface, md5 algorithm
Platform: | Size: 13312 | Author: wensheng | Hits:

[Driver DevelopRAMDISK_IO_GET_OK

Description: Window下ramdisk源码,修改后使其能够打印所有IO请求信息,包含起始扇区号(lba)和扇区数(seccnt),对于开发定制型存储驱动很有帮助。-ramdisk driver under windows,you can get io request message to develop your own storage driver
Platform: | Size: 570368 | Author: 沈千浪 | Hits:
« 12 »

CodeBus www.codebus.net